home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / XVThumbImagePlugin.py < prev   
Text File  |  2006-12-03  |  2KB  |  69 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: XVThumbImagePlugin.py 2134 2004-10-06 08:55:20Z fredrik $
  4. #
  5. # XV Thumbnail file handler by Charles E. "Gene" Cash
  6. # (gcash@magicnet.net)
  7. #
  8. # see xvcolor.c and xvbrowse.c in the sources to John Bradley's XV,
  9. # available from ftp://ftp.cis.upenn.edu/pub/xv/
  10. #
  11. # history:
  12. # 98-08-15 cec  created (b/w only)
  13. # 98-12-09 cec  added color palette
  14. # 98-12-28 fl   added to PIL (with only a few very minor modifications)
  15. #
  16. # To do:
  17. # FIXME: make save work (this requires quantization support)
  18. #
  19.  
  20. __version__ = "0.1"
  21.  
  22. import string
  23. import Image, ImageFile, ImagePalette
  24.  
  25. # standard color palette for thumbnails (RGB332)
  26. PALETTE = ""
  27. for r in range(8):
  28.     for g in range(8):
  29.         for b in range(4):
  30.             PALETTE = PALETTE + (chr((r*255)/7)+chr((g*255)/7)+chr((b*255)/3))
  31.  
  32. ##
  33. # Image plugin for XV thumbnail images.
  34.  
  35. class XVThumbImageFile(ImageFile.ImageFile):
  36.  
  37.     format = "XVThumb"
  38.     format_description = "XV thumbnail image"
  39.  
  40.     def _open(self):
  41.  
  42.         # check magic
  43.         s = self.fp.read(6)
  44.         if s != "P7 332":
  45.             raise SyntaxError, "not an XV thumbnail file"
  46.  
  47.         # skip info comments
  48.         while 1:
  49.             s = string.strip(self.fp.readline())
  50.             if s == "#END_OF_COMMENTS":
  51.                 break
  52.  
  53.         # read header line
  54.         s = string.split(self.fp.readline())
  55.  
  56.         self.mode = "P"
  57.         self.size = int(s[0]), int(s[1])
  58.  
  59.         self.palette = ImagePalette.raw("RGB", PALETTE)
  60.  
  61.         self.tile = [
  62.             ("raw", (0, 0)+self.size,
  63.              self.fp.tell(), (self.mode, 0, 1)
  64.              )]
  65.  
  66. # --------------------------------------------------------------------
  67.  
  68. Image.register_open("XVThumb", XVThumbImageFile)
  69.